Namespace - LJCNetCommon
Parameters
bytes - The base64 byte array.
Returns
The Text byte array.
Syntax
C# |
public static Byte[] Base64BytesToTextBytes(Byte[] bytes)
|
Decodes a Base64 byte array to a Text byte array. (E)
Example
C# |
using LJCNetCommon;
private static void Base64BytesToTextBytes()
{
byte[] base64Bytes = NetCommon.TextToBase64Bytes("Text");
byte[] textBytes = NetCommon.Base64BytesToTextBytes(base64Bytes);
string text = NetCommon.BytesToText(textBytes);
}
|
Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.